1 <Window x:Class="CSWPFAnimatedGIF.MainWindow"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:local="clr-namespace:CSWPFAnimatedGIF"
5 Title="Animated GIF" Height="300" Width="300">
10 </Grid.RowDefinitions>
11 <local:AnimatedGIFControl x:Name="GIFCtrl"/>
12 <Button x:Name="btnStart" Width="70" Height="30" Margin="50"
13 HorizontalAlignment="Left" Grid.Row="1" Click="btnStart_Click">Start</Button>
14 <Button x:Name="btnStop" Width="70" Height="30" Margin="50"
15 HorizontalAlignment="Right" Grid.Row="1" Click="btnStop_Click">Stop</Button>